trigram index (fast full text search even without "whole words" checked). Can be...
[fedora-idea.git] / plugins / conditionalOperatorConvertor / source / intentionDescriptions / Convert ternary operator to if statement / after.java.template
blob9cf0cf2d2222f8958d06a4519e00e211a12c9da4
1 public class X {
2   void f(boolean isMale) {
3     String title;
4     if (isMale) {
5       title = "Mr.";
6     } else {
7       title = "Ms.";
8     }
9     System.out.println("title = " + title);
10   }